0f8786
@@ -37,6 +37,11 @@
public class RestletHeaderFilterStrategy extends DefaultHeaderFilterStrategy {
         // The "CamelAcceptContentType" header is not added to the outgoing HTTP 
         // headers but it will be going out as "Accept.
         getOutFilter().add(Exchange.ACCEPT_CONTENT_TYPE);
+        
+        // As we don't set the transfer_encoding protocol header for the restlet service
+        // we need to remove the transfer_encoding which could let the client wait forever
+        getOutFilter().add(Exchange.TRANSFER_ENCODING);
+        setCaseInsensitive(true);
     }
 
 }
